home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / EDIT_UTL / FDUPLINS / FDUPLINS.DOC next >
Text File  |  1993-07-13  |  2KB  |  43 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.                                     FDUPLINS
  7.                Free DOS utility: text file duplicate line deleter
  8.                           Version 1.00 - July 14, 1993
  9.                                     (c) 1993
  10.                                        by
  11.                              David Daniel Anderson
  12.                                    Reign Ware
  13.  
  14.  
  15.  
  16.  
  17.  
  18. FDUPLINS removes superfluous (duplicated) lines from a SORTED file.  No lines
  19. are lost, since exactly one copy (the last) of every different line is saved.
  20.  
  21.  Usage:  FDUPLINS source_file new_destination_file [/c[y|N]] [/d#]
  22.    where "/cy" is case sensitive, "/cn" is case insensitive, and
  23.    where "d#" is the number of characters at the beginning of the
  24.    line to disregard, e.g. - "/d5" ignores the first 5 characters.
  25.  
  26. It takes a minimum of two parameters on the command line: the name of the
  27. original file followed by a new file name, which will be the sanitized file.
  28.  
  29. The other two parameters are optional.  If /c or /cy is entered on the command
  30. line the program operates in case sensitive mode, i.e. "david" is considered
  31. different from "David".  If /cn is entered, case is ignored in determining
  32. duplication.  This is the default.
  33.  
  34. If "/d" followed by a number (up to 255) is entered, that many characters at
  35. the beginning of the line are Disregarded (ignored) when in determining
  36. duplication.  Zero is the default.  This option was created so a file could
  37. be have its lines numbered, sorted, have the duplicates removed, and then be
  38. unsorted using the line numbers originally added.  Removal of those line
  39. numbers completes the process.
  40.  
  41. Wildcards are not allowed.
  42.  
  43.